home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / chunker.lha / Chunker / source / smakefile < prev    next >
Makefile  |  1995-11-11  |  508b  |  29 lines

  1. #
  2. # SAS/C Makefile for chunker
  3. #
  4. #
  5.  
  6. LINKER = SC LINK
  7. LINKOPS = NOCHECKABORT
  8.  
  9. all: /dechunk /chunker
  10.  
  11. chunker.o: chunker.c chunker.h machine.h
  12.  
  13. dechunk.o: dechunk.c dechunk.h machine.h
  14.  
  15. bfn.o: bfn.c bfn.h machine.h
  16.  
  17. machine.o: machine.c machine.h
  18.  
  19. /chunker: chunker.o bfn.o machine.o
  20.     $(LINKER) $(LINKOPS) chunker.o bfn.o machine.o TO $@
  21.     protect /chunker p add
  22.  
  23. /dechunk: dechunk.o bfn.o machine.o
  24.     $(LINKER) $(LINKOPS) dechunk.o bfn.o machine.o TO $@
  25.     protect /dechunk p add
  26.  
  27. clean:
  28.     -delete \#?.o /\#?.lnk
  29.